
https://lh3.googleusercontent.com/-8QwM_VqOOJo/WCRh5yLq0JI/AAAAAAAAFAM/pZrUT0B4M0AbdZ-ef4Y6GZRd_tzCbyyRgCJkCGAYYCw/s2000-fcrop64=1,088f204af38be90a/DSC07647-2.jpg
https://lh3.googleusercontent.com/-8QwM_VqOOJo/WCRh5yLq0JI/AAAAAAAAFAM/pZrUT0B4M0AbdZ-ef4Y6GZRd_tzCbyyRgCJkCGAYYCw/s3000-fcrop64=1,088f204af38be90a/DSC07647-2.jpg
===============
to locate image pointers, seek for:
https://plus.google.com/photos/
===============
to locate youtube video, seek for:
https://www.youtube.com/watch
the thumbnail is at:
"thumbnail":{"thumbnails":[{"url":"https://i.ytimg.com/vi/Q_CMnRSzbbk/hqdefault.jpg?sqp=-oaymwEYCKgBEF5IVfKriqkDCwgBFQAAiEIYAXAB\u0026rs=AOn4CLDLuA-V4-mX2Xop-3-ep__V4NVmqw",
that is: https://i.ytimg.com/vi/Q_CMnRSzbbk/hqdefault.jpg
Extract cagle images
#=================
image.cagle
icon
https://image.cagle.com/211431/373/211431.png
real
https://image.cagle.com/211431/1155/211431.png
https://image.cagle.com/153636/150/153636.png
https://image.cagle.com/153636/1155/153636.png
Extract pinterest images
#=================
F12 to copy body
locate 4x> or loacte 3x,
and then line feed
and extract 4x lines
since image size different, set css min-width and max-width
Extract images Notes.html
function revFmImgList
#=================
detect localstorage if list exist
if not, create one with full list
if list length is 0, rewrite it
algoritm
display one, remove item from list
if list length is 0, rewrite it, and reload full list
if (localStorage.getItem("remainImgList") === null) {
localStorage.remainImgList = JSON.stringify(ImgList);
newImgList = ImgList;
} else{
newImgList = JSON.parse(localStorage.remainImgList);
if(newImgList.length === 0){
newImgList = ImgList;
localStorage.remainImgList = JSON.stringify(ImgList);
}
}
function revFmImgList("something") {
newImgList.splice(newImgList.indexOf("something"), 1);
localStorage.remainImgList = JSON.stringify(newImgList);
if(newImgList.length === 0){
newImgList = ImgList;
localStorage.remainImgList = JSON.stringify(ImgList);
}
}